home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
scope
/
151-175
/
scopedisk168
/
asmmacros
/
am_02
/
getstdin.i
< prev
next >
Wrap
Text File
|
1995-03-19
|
535b
|
22 lines
NOLIST
GetStdIn MACRO ; 14 Sept 88
*------------------------------; Start of GetStdIn macro.
CallLib Input,dos ; Call Input.
NOLIST
IFEQ ReEntrant-1
LIST
DefDS StdIn,1
MOVE.L D0,StdIn(A5) ; Save the file handle at StdIn.
NOLIST
ENDC
IFNE ReEntrant-1
LIST
DS_BSS StdIn,1,.L
MOVE.L D0,StdIn ; Save the file handle at StdIn.
NOLIST
ENDC
LIST
*------------------------------; End of GetStdIn macro.
ENDM
LIST